home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / libs / unixlib.lha / unix / include / unistd.h < prev    next >
C/C++ Source or Header  |  1996-10-08  |  7KB  |  200 lines

  1. /*-
  2.  * Copyright (c) 1991 The Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *    must display the following acknowledgement:
  15.  *    This product includes software developed by the University of
  16.  *    California, Berkeley and its contributors.
  17.  * 4. Neither the name of the University nor the names of its contributors
  18.  *    may be used to endorse or promote products derived from this software
  19.  *    without specific prior written permission.
  20.  *
  21.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31.  * SUCH DAMAGE.
  32.  *
  33.  *    @(#)unistd.h    5.13 (Berkeley) 6/17/91
  34.  */
  35.  
  36. #ifndef _UNISTD_H_
  37. #define    _UNISTD_H_
  38.  
  39. #include <sys/cdefs.h>
  40. #include <sys/types.h>
  41. #include <sys/unistd.h>
  42.  
  43. #define     STDIN_FILENO    0    /* standard input file descriptor */
  44. #define    STDOUT_FILENO    1    /* standard output file descriptor */
  45. #define    STDERR_FILENO    2    /* standard error file descriptor */
  46.  
  47. /* fnmatch(3) defines */
  48. #define    FNM_PATHNAME    0x01    /* match pathnames, not filenames */
  49. #ifndef _POSIX_SOURCE
  50. #define    FNM_QUOTE    0x02    /* escape special chars with \ */
  51. #endif
  52.  
  53. #ifndef NULL
  54. #define    NULL        0    /* null pointer constant */
  55. #endif
  56.  
  57. typedef    int ssize_t;        /* count of bytes or error indication */
  58.  
  59. __BEGIN_DECLS
  60. void     _exit __P((int));
  61. int     access __P((const char *, int));
  62. u_int     alarm __P((u_int));
  63. int     chdir __P((const char *));
  64. int     chown __P((const char *, uid_t, gid_t));
  65. int     close __P((int));
  66. char    *cuserid __P((char *));
  67. int     dup __P((int));
  68. int     dup2 __P((int, int));
  69. int     exec __P((char *, char **, int, int, char *, int));
  70. int     execf __P((int(*)(void *), void *, int, int, char *, int));
  71. int     execl __P((const char *, const char *, ...));
  72. int     execle __P((const char *, const char *, ...));
  73. int     execlp __P((const char *, const char *, ...));
  74. int     execv __P((const char *, char * const *));
  75. int     execve __P((const char *, char * const *, char * const *));
  76. int     execvp __P((const char *, char * const *));
  77. pid_t     fork __P((void));
  78. long     fpathconf __P((int, int));        /* not yet */
  79. char    *getcwd __P((char *, int));
  80. gid_t     getegid __P((void));
  81. uid_t     geteuid __P((void));
  82. gid_t     getgid __P((void));
  83. int     getgroups __P((int, int *));        /* XXX (gid_t *) */
  84. char    *getlogin __P((void));
  85. pid_t     getpgrp __P((void));
  86. pid_t     getpid __P((void));
  87. pid_t     getppid __P((void));
  88. uid_t     getuid __P((void));
  89. int     isatty __P((int));
  90. int     link __P((const char *, const char *));
  91. off_t     lseek __P((int, off_t, int));
  92. long     pathconf __P((const char *, int));    /* not yet */
  93. int     pause __P((void));
  94. int     pipe __P((int *));
  95. ssize_t     read __P((int, void *, size_t));
  96. int     rmdir __P((const char *));
  97. int     setgid __P((gid_t));
  98. int     setpgid __P((pid_t, pid_t));
  99. pid_t     setsid __P((void));
  100. int     setuid __P((uid_t));
  101. u_int     sleep __P((u_int));
  102. long     sysconf __P((int));            /* not yet */
  103. pid_t     tcgetpgrp __P((int));
  104. int     tcsetpgrp __P((int, pid_t));
  105. char    *ttyname __P((int));
  106. int     unlink __P((const char *));
  107. ssize_t     write __P((int, const void *, unsigned int));
  108.  
  109. #if 1 /* for compatibility with SASC 6.xx */
  110. off_t     __lseek __P((int, off_t, int));
  111. ssize_t     __read __P((int, void *, size_t));
  112. ssize_t     __write __P((int, const void *, unsigned int));
  113. int     __close __P((int));
  114.  
  115. #define lseek __lseek
  116. #define read __read
  117. #define write __write
  118. #define close __close
  119. #endif
  120.  
  121. #ifndef    _POSIX_SOURCE
  122.  
  123. /* structure timeval required for select() */
  124. #include <sys/time.h>
  125.  
  126. int     acct __P((const char *));
  127. int     async_daemon __P((void));
  128. char    *brk __P((const char *));
  129. int     chflags __P((const char *, long));
  130. int     chroot __P((const char *));
  131. char    *crypt __P((const char *, const char *));
  132. int     des_cipher __P((const char *, char *, long, int));
  133. int     des_setkey __P((const char *key));
  134. int     encrypt __P((char *, int));
  135. void     endusershell __P((void));
  136. int     exect __P((const char *, char * const *, char * const *));
  137. int     fchdir __P((int));
  138. int     fchflags __P((int, long));
  139. int     fchown __P((int, int, int));
  140. int     fnmatch __P((const char *, const char *, int));
  141. int     fsync __P((int));
  142. int     ftruncate __P((int, off_t));
  143. long     getdtablesize __P((void));
  144. unsigned long    gethostid __P((void));
  145. long     gethostname __P((unsigned char *, long));
  146. mode_t     getmode __P((const void *, mode_t));
  147. int     getpagesize __P((void));
  148. char    *getpass __P((const char *));
  149. char    *getusershell __P((void));
  150. char    *getwd __P((char *));            /* obsoleted by getcwd() */
  151. int     initgroups __P((const char *, int));
  152. int     mknod __P((const char *, mode_t, dev_t));
  153. int     mkstemp __P((char *));
  154. char    *mktemp __P((char *));
  155. int     nfssvc __P((int));
  156. int     nice __P((int));
  157. void     psignal __P((u_int, const char *));
  158. extern char *sys_siglist[];
  159. int     profil __P((char *, int, int, int));
  160. int     rcmd __P((char **, int, const char *,
  161.         const char *, const char *, int *));
  162. char    *re_comp __P((const char *));
  163. int     re_exec __P((const char *));
  164. int     readlink __P((const char *, char *, int));
  165. int     reboot __P((int));
  166. int     revoke __P((const char *));
  167. int     rresvport __P((int *));
  168. int     ruserok __P((const char *, int, const char *, const char *));
  169. void    *sbrk __P((unsigned));
  170. int     select __P((int, fd_set *, fd_set *, fd_set *, struct timeval *));
  171. int     setegid __P((gid_t));
  172. int     seteuid __P((uid_t));
  173. int     setgroups __P((int, const int *));
  174. void     sethostid __P((long));
  175. int     sethostname __P((const char *, int));
  176. int     setkey __P((const char *));
  177. int     setlogin __P((const char *));
  178. void    *setmode __P((const char *));
  179. int     setpgrp __P((pid_t pid, pid_t pgrp));    /* obsoleted by setpgid() */
  180. int     setregid __P((int, int));
  181. int     setreuid __P((int, int));
  182. int     setrgid __P((gid_t));
  183. int     setruid __P((uid_t));
  184. void     setusershell __P((void));
  185. int     swapon __P((const char *));
  186. int     symlink __P((const char *, const char *));
  187. void     sync __P((void));
  188. int     syscall __P((int, ...));
  189. int     truncate __P((const char *, off_t));
  190. int     ttyslot __P((void));
  191. u_int     ualarm __P((u_int, u_int));
  192. void     usleep __P((u_int));
  193. void    *valloc __P((size_t));            /* obsoleted by malloc() */
  194. int     vfork __P((void));
  195.  
  196. #endif /* !_POSIX_SOURCE */
  197. __END_DECLS
  198.  
  199. #endif /* !_UNISTD_H_ */
  200.